home *** CD-ROM | disk | FTP | other *** search
/ Learn Microsoft Visual Basic 6.0 Now / Learn Microsoft Visual Basic 6.0 Now (Microsoft Press)(X03-58607)(1998).ISO / media / chap09 / b09a005.cc2 < prev    next >
Text File  |  1998-06-07  |  1KB  |  34 lines

  1. 0, As you write longer programs, you're 
  2. 2, likely to have several forms and event 
  3. 4, procedures that use the same variables and 
  4. 6, routines. By default, variables are local 
  5. 10, to an event procedure, meaning that 
  6. 12, they can be read or changed only in the 
  7. 14, procedure that they were created in. In 
  8. 17, this chapter, you will sidestep this safety 
  9. 19, feature by creating a special file 
  10. 22, called a standard module for the variables 
  11. 24, and procedures you want to share 
  12. 26, throughout your program. First, you'll learn how 
  13. 30, to create a new standard module in a 
  14. 32, Visual Basic project. Standard modules 
  15. 35, appear in the Project window and are stored 
  16. 37, on disk as separate files with a .bas 
  17. 40, extension. Next, you'll learn how to 
  18. 44, create public variables that can be changed 
  19. 46, by any procedure in your program. By 
  20. 49, default, Visual Basic variables are local 
  21. 51, in scope. But if you declare them in a 
  22. 53, standard module with the Public keyword, 
  23. 56, they can be used anywhere. Finally, 
  24. 60, you'll learn how to create your own Function 
  25. 61, and Sub procedures to extend the Visual 
  26. 64, Basic language. Function and Sub 
  27. 66, procedures assign a familiar name to a block of 
  28. 68, code you plan to use periodically as 
  29. 71, your program runs. Because they eliminate 
  30. 73, duplication, Function and Sub procedures 
  31. 76, are especially efficient in larger 
  32. 78, programming projects and team development 
  33. 80, efforts.
  34. 82, END